; Report format -> Version, ReportName, MarginWidth(in TWIPS), NumberPages, NumberHeaders, NumberFooters
2, "Monthly Peak Demand by Enduse", 720, 1, 1, 1
	; ReportColors format -> ReportColor indicator, ColorName, RedValue(0-255), GreenValue(0-255), BlueValue(0-255) 
	; RW NOTE -> Stored in the Report Object
	RPT_COLOR, "White",		255, 255, 255
	RPT_COLOR, "Black",		  0,   0,   0
	RPT_COLOR, "Blue",		153, 153, 255
	RPT_COLOR, "Blue/Cyan", 204, 204, 255
	RPT_COLOR, "Yellow", 	255, 255, 204
	RPT_COLOR, "Cyan",		204, 255, 255
	RPT_COLOR, "Gray",		204, 204, 204
	RPT_COLOR, "LtGray",		230, 230, 230
	RPT_COLOR, "LtBrown",	230, 230, 204
	; ReportHeader format -> Report Header Indicator, TopPosition, FontName, FontSize(in logical units), FontStyle(Normal=0,Italic,Underline), 
	;						 FontWeight(0 to 1000,400 -> Normal), InputText
	RPT_HEADER, -900, "Verdana", 7, 0, 400, "%p;;%d"
	; ReportFooter format -> Same as ReportHeader
	RPT_FOOTER, -14760, "Verdana", 7, 0, 400, "%v;%r;%#"
	; ReportPage format -> ReportPage Indicator, BaselineGraph1Height
		; RW NOTE -> PageHeight(in TWIPS) and PageWidth(in TWIPS) can be determined from the children (Tables and Charts) that are in the ReportPage
		; RW NOTE -> PageTop and PageLeft should always be determined by the margins, not by user entry.
		; RW NOTE -> Can't we dynamically determine the Baseline graph1 height by getting the graph rectangle size at 100%?
	RPT_PAGE, 0, 242
		; ReportChart format -> ReportChart indicator, Index, ChartFileName, Top(in TWIPS), Bottom(in TWIPS), Left(in TWIPS), Right(in TWIPS),
		;						Number of Fixed Legend Rows, Header Replacement Text (v2), Footer Replacement Text (v2)
		RPT_CHART, 0, "MoEU.oc2",      -976, -5026,    0,  5400, 0, "", ""
		RPT_CHART, 1, "MoEU.oc2",      -976, -5026, 5400, 10800, 0, "", ""
		RPT_CHART, 2, "EULegend.oc2", -5026, -5951,  643, 10157, 3, "", ""
		; ReportTable format -> ReportTable indicator, Index, Top(in TWIPS), Bottom(in TWIPS), Left(in TWIPS), Right(in TWIPS), NumRows, NumCols, 
		;						DefCellFormat(Left=0,Center,Right), DefFontName, DefFontSize(in logical units), DefFontStyle(Normal=0,Italic,Underline), 
		;						DefFontWeight(0 to 1000, 400->Normal), DefCellColorIdx, DefTextColorIdx
		RPT_TABLE, 0,  -6248,  -6505,     0, 10800,   1,   1,   0,  "Verdana",  12,  0,  700, 0, 1
			RPT_TABLE_CELL,  0,   0,   0,	  "",     -1,     -1,    700,       0,        1,     "Electric Demand (kW)"
			;ReportTableCell format -> ReportTableCell indicator, Row, Column, Format(Left=0,Center,Right), FontName, FontSize(in logical units), 
			;						   FontStyle(Normal=0,Italic,Underline), FontWeight(0 to 1000, 400->Normal), TextColorIdx, CellColorIdx, TextData

		RPT_TABLE, 1,  -6518,  -9488,     0, 10800,  14,  14,	2,	"Verdana",  11,  0,  400, 4, 1
			;ReportTableRow -> used to specify a global color for an entire row
			;ReportTableRow format -> Row, CellColorIdx, TextColorIdx
			RPT_TABLE_ROW,    1, 4, 1
			RPT_TABLE_ROW,    2, 8, 1
			RPT_TABLE_ROW,    3, 4, 1
			RPT_TABLE_ROW,    4, 8, 1
			RPT_TABLE_ROW,    5, 4, 1
			RPT_TABLE_ROW,    6, 8, 1
			RPT_TABLE_ROW,    7, 4, 1
			RPT_TABLE_ROW,    8, 8, 1
			RPT_TABLE_ROW,    9, 4, 1
			RPT_TABLE_ROW,   10, 8, 1
			RPT_TABLE_ROW,   11, 4, 1
			RPT_TABLE_ROW,   12, 8, 1
			RPT_TABLE_ROW,   13, 6, 1
			;    Ind       Row, Col, Fmt,  FName,  FSize, FStyle,   FWgt,  CellClr,  TxtClr,  CellData
			;Column Headers
			RPT_TABLE_CELL,  0,   0,   1,	  "",     -1,     -1,    700,       6,        1,     ""
			RPT_TABLE_CELL,  0,   1,   1,	  "",     -1,     -1,    700,       6,        1,     "Jan"
			RPT_TABLE_CELL,  0,   2,   1,	  "",     -1,     -1,    700,       6,        1,     "Feb"
			RPT_TABLE_CELL,  0,   3,   1,	  "",     -1,     -1,    700,       6,        1,     "Mar"
			RPT_TABLE_CELL,  0,   4,   1,	  "",     -1,     -1,    700,       6,        1,     "Apr"
			RPT_TABLE_CELL,  0,   5,   1,	  "",     -1,     -1,    700,       6,        1,     "May"
			RPT_TABLE_CELL,  0,   6,   1,	  "",     -1,     -1,    700,       6,        1,     "Jun"
			RPT_TABLE_CELL,  0,   7,   1,	  "",     -1,     -1,    700,       6,        1,     "Jul"
			RPT_TABLE_CELL,  0,   8,   1,	  "",     -1,     -1,    700,       6,        1,     "Aug"
			RPT_TABLE_CELL,  0,   9,   1,	  "",     -1,     -1,    700,       6,        1,     "Sep"
			RPT_TABLE_CELL,  0,  10,   1,	  "",     -1,     -1,    700,       6,        1,     "Oct"
			RPT_TABLE_CELL,  0,  11,   1,	  "",     -1,     -1,    700,       6,        1,     "Nov"
			RPT_TABLE_CELL,  0,  12,   1,	  "",     -1,     -1,    700,       6,        1,     "Dec"
			RPT_TABLE_CELL,  0,  13,   1,	  "",     -1,     -1,    700,       6,        1,     "Total"
			; Row Headers
			RPT_TABLE_CELL,  1,   0,   0,	  "",     -1,     -1,    400,       4,        1,     " Space Cool"
			RPT_TABLE_CELL,  2,   0,   0,	  "",     -1,     -1,    400,       8,        1,     " Heat Reject."
			RPT_TABLE_CELL,  3,   0,   0,	  "",     -1,     -1,    400,       4,        1,     " Refrigeration"
			RPT_TABLE_CELL,  4,   0,   0,	  "",     -1,     -1,    400,       8,        1,     " Space Heat"
			RPT_TABLE_CELL,  5,   0,   0,	  "",     -1,     -1,    400,       4,        1,     " HP Supp."
			RPT_TABLE_CELL,  6,   0,   0,	  "",     -1,     -1,    400,       8,        1,     " Hot Water"
			RPT_TABLE_CELL,  7,   0,   0,	  "",     -1,     -1,    400,       4,        1,     " Vent. Fans"
			RPT_TABLE_CELL,  8,   0,   0,	  "",     -1,     -1,    400,       8,        1,     " Pumps & Aux."
			RPT_TABLE_CELL,  9,   0,   0,	  "",     -1,     -1,    400,       4,        1,     " Ext. Usage"
			RPT_TABLE_CELL, 10,   0,   0,	  "",     -1,     -1,    400,       8,        1,     " Misc. Equip."
			RPT_TABLE_CELL, 11,   0,   0,	  "",     -1,     -1,    400,       4,        1,     " Task Lights"
			RPT_TABLE_CELL, 12,   0,   0,	  "",     -1,     -1,    400,       8,        1,     " Area Lights"
			RPT_TABLE_CELL, 13,   0,   0,	  "",     -1,     -1,    700,       6,        1,     " Total"
		
		RPT_TABLE, 2,  -9693,  -9950,     0, 10800,   1,   1,   0,  "Verdana",  12,  0,  700, 0, 1
			RPT_TABLE_CELL,  0,   0,   0,	  "",     -1,     -1,    700,       0,        1,     "Gas Demand (Btu/h)"

		RPT_TABLE, 3,  -9963, -12933,     0, 10800,  14,  14,	2,	"Verdana",  11,  0,  400, 4, 1
			;ReportTableRow -> used to specify a global color for an entire row
			;ReportTableRow format -> Row, CellColorIdx, TextColorIdx
			RPT_TABLE_ROW,    1, 4, 1
			RPT_TABLE_ROW,    2, 8, 1
			RPT_TABLE_ROW,    3, 4, 1
			RPT_TABLE_ROW,    4, 8, 1
			RPT_TABLE_ROW,    5, 4, 1
			RPT_TABLE_ROW,    6, 8, 1
			RPT_TABLE_ROW,    7, 4, 1
			RPT_TABLE_ROW,    8, 8, 1
			RPT_TABLE_ROW,    9, 4, 1
			RPT_TABLE_ROW,   10, 8, 1
			RPT_TABLE_ROW,   11, 4, 1
			RPT_TABLE_ROW,   12, 8, 1
			RPT_TABLE_ROW,   13, 6, 1
			;    Ind       Row, Col, Fmt,  FName,  FSize, FStyle,   FWgt,  CellClr,  TxtClr,  CellData
			;Column Headers
			RPT_TABLE_CELL,  0,   0,   1,	  "",     -1,     -1,    700,       6,        1,     ""
			RPT_TABLE_CELL,  0,   1,   1,	  "",     -1,     -1,    700,       6,        1,     "Jan"
			RPT_TABLE_CELL,  0,   2,   1,	  "",     -1,     -1,    700,       6,        1,     "Feb"
			RPT_TABLE_CELL,  0,   3,   1,	  "",     -1,     -1,    700,       6,        1,     "Mar"
			RPT_TABLE_CELL,  0,   4,   1,	  "",     -1,     -1,    700,       6,        1,     "Apr"
			RPT_TABLE_CELL,  0,   5,   1,	  "",     -1,     -1,    700,       6,        1,     "May"
			RPT_TABLE_CELL,  0,   6,   1,	  "",     -1,     -1,    700,       6,        1,     "Jun"
			RPT_TABLE_CELL,  0,   7,   1,	  "",     -1,     -1,    700,       6,        1,     "Jul"
			RPT_TABLE_CELL,  0,   8,   1,	  "",     -1,     -1,    700,       6,        1,     "Aug"
			RPT_TABLE_CELL,  0,   9,   1,	  "",     -1,     -1,    700,       6,        1,     "Sep"
			RPT_TABLE_CELL,  0,  10,   1,	  "",     -1,     -1,    700,       6,        1,     "Oct"
			RPT_TABLE_CELL,  0,  11,   1,	  "",     -1,     -1,    700,       6,        1,     "Nov"
			RPT_TABLE_CELL,  0,  12,   1,	  "",     -1,     -1,    700,       6,        1,     "Dec"
			RPT_TABLE_CELL,  0,  13,   1,	  "",     -1,     -1,    700,       6,        1,     "Total"
			; Row Headers
			RPT_TABLE_CELL,  1,   0,   0,	  "",     -1,     -1,    400,       4,        1,     " Space Cool"
			RPT_TABLE_CELL,  2,   0,   0,	  "",     -1,     -1,    400,       8,        1,     " Heat Reject."
			RPT_TABLE_CELL,  3,   0,   0,	  "",     -1,     -1,    400,       4,        1,     " Refrigeration"
			RPT_TABLE_CELL,  4,   0,   0,	  "",     -1,     -1,    400,       8,        1,     " Space Heat"
			RPT_TABLE_CELL,  5,   0,   0,	  "",     -1,     -1,    400,       4,        1,     " HP Supp."
			RPT_TABLE_CELL,  6,   0,   0,	  "",     -1,     -1,    400,       8,        1,     " Hot Water"
			RPT_TABLE_CELL,  7,   0,   0,	  "",     -1,     -1,    400,       4,        1,     " Vent. Fans"
			RPT_TABLE_CELL,  8,   0,   0,	  "",     -1,     -1,    400,       8,        1,     " Pumps & Aux."
			RPT_TABLE_CELL,  9,   0,   0,	  "",     -1,     -1,    400,       4,        1,     " Ext. Usage"
			RPT_TABLE_CELL, 10,   0,   0,	  "",     -1,     -1,    400,       8,        1,     " Misc. Equip."
			RPT_TABLE_CELL, 11,   0,   0,	  "",     -1,     -1,    400,       4,        1,     " Task Lights"
			RPT_TABLE_CELL, 12,   0,   0,	  "",     -1,     -1,    400,       8,        1,     " Area Lights"
			RPT_TABLE_CELL, 13,   0,   0,	  "",     -1,     -1,    700,       6,        1,     " Total"
REPORT_END
